home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1998 #2
/
Amiga Plus CD - 1998 - No. 2.iso
/
pd
/
musik
/
eagleplayer2.00
/
rexx
/
ep_prevpatt.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-08-05
|
386b
|
29 lines
/* EaglePlayer - play previous pattern in module */
address 'rexx_EP'
options results
status m pnr
nummer=result
if nummer == "RESULT" then
do
say "No Module loaded!"
exit 0
end
else
do
status p nummer jmp
if result == "no" then
do
say "No Patternjump available!"
end
else
do
prevpatt
position=result
say position
end
end